home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1996 July: Mac OS SDK / Dev.CD Jul 96 SDK / Dev.CD Jul 96 SDK1.toast / Development Kits (Disc 1) / OpenDoc / OpenDoc Development / Debugging Support / OpenDoc Source Code / Utilities / UtilCmmn.r < prev    next >
Encoding:
Text File  |  1996-04-22  |  1.1 KB  |  40 lines  |  [TEXT/MPS ]

  1. /*
  2.     File:        UtilCmmn.r
  3.  
  4.     Contains:
  5.     
  6.         Definitions of resources used by OpenDoc utilities that are not shared in the
  7.         now-obsolete multiple-library build. This file is automatically included by
  8.         Util.r, so part developers should not need to worry about it.
  9.  
  10.     At least one utility, PlatformFiles UniquifyName method, takes a resource ID.  The resource is
  11.     required to live in the client library, yet all instances of that resource should be identical
  12.     if the same behaviour is to be had regardless of caller.  Such resources live here, and are
  13.     included by individual libraries' .r files.  In the single library case, the last one written
  14.     to the resource fork overwrites the others, but that's ok since they're all identical.
  15.  
  16.     Owned by:    Eric House
  17.  
  18.     Copyright:    © 1993 - 1995 by Apple Computer, Inc., all rights reserved.
  19.  
  20.     
  21.     In Progress:
  22.         
  23. */
  24.  
  25. #ifndef _UTILDEFS_
  26. #include "UtilDefs.h"
  27. #endif
  28.  
  29. resource 'STR ' (kCopyDefaultNameNoNumStrID, purgeable) {
  30.     "^0 copy"
  31. };
  32.  
  33. resource 'STR ' (kCopyDefaultNameWithNumStrID, purgeable) {
  34.     "^0 copy ^1"
  35. };
  36.  
  37. resource 'STR ' (kConcatDefaultNameNoNumStrID, purgeable) {
  38.     "^0"
  39. };
  40.